home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / comm / fido / Rock_1_5.lha / ROCK / RockCfg.DOC < prev    next >
Text File  |  1995-04-22  |  8KB  |  310 lines

  1.  
  2. ************************************************************************
  3.  
  4.              Rock v1.3 - Fidonet mailer for point systems
  5.                  Copyright (C) 1995  Jean-Marc Xiume'
  6.          This software is distributed under the terms of the
  7.     GNU General Public License. Read "license.doc" for more details.
  8.  
  9. ************************************************************************
  10.  
  11.                      Configuration file documentation
  12.  
  13. ************************************************************************
  14.  
  15.  
  16. Each config parameter are described here, followed by an example.
  17.  
  18. The config file is a WPL script, so edit it carefully and change only
  19. the argument of each "set <variable> <argument>" command.
  20.  
  21. Do NOT remove or comment out any line (except blank lines or comments)
  22. in the FIDO section of the file, or there will certainly be some problems
  23. ahead... . All the parameters in this section are necessary and cannot
  24. have a default value.
  25.  
  26. Of course, for testing purposes, you can leave several versions of the
  27. same line and comment out the ones you don't use (with a ";" at the
  28. begining).
  29.  
  30. The parameters in the other sections have default values. Those values
  31. are stored in the rock.default_cfg file, which you can read but not
  32. modify.
  33. Each parameter in the config file cancels and replace the default one.
  34.  
  35.  
  36.  
  37. *************************** FIDO STUFF IS HERE *************************
  38.  
  39.  
  40. * net1, net2, etc...
  41.   The 4D addresses for each boss' different net (like AKAs).
  42.   For example, the main net addresses of the Ramses BBS are:
  43.       fidonet     2:320/104.0
  44.       amiganet    39:180/1.0
  45.       francomédia 101:173/310.0
  46.   If your boss has several addresses for each net, write only the
  47.   main one. The numbers (net1, net2...) must be from 1 and up.
  48.   You can delete  or add  "set net" lines according to the number of
  49.   nets carried by your boss.
  50.  
  51. set net1 2:320/104.0
  52. set net2 39:180/1.0
  53. set net3 101:173/310.0
  54.  
  55.  
  56. * host.address
  57.   Your full 5D address goes here.
  58.  
  59. set host.address fidonet#2:320/104.22
  60.  
  61.  
  62. * host.sysop
  63.   Your name.
  64.  
  65. set host.sysop "Jean-Marc Xiume"
  66.  
  67.  
  68. * host.sitename
  69.   Your system name.
  70.  
  71. set host.Sitename "Topaz Alpha Point"
  72.  
  73.  
  74. * remote.password
  75.   The session password for your Boss (No, it's not mine >:) )
  76.  
  77. set remote.password BLABLA2U
  78.  
  79. * boss.address1, boss.address2, etc...
  80.   Your Boss's full 5D addresses for each phone number.
  81.  
  82. set boss.address1 fidonet#2:320/104.0
  83. set boss.address2 fidonet#2:320/105.0
  84. set boss.address3 fidonet#2:320/106.0
  85.  
  86.  
  87. * boss.number1, boss.number2, etc...
  88.   The phone numbers of your Boss
  89.  
  90. set boss.number1 "16,1-45845623"
  91. set boss.number2 "16,1-53791199"
  92. set boss.number3 "16,1-53791200"
  93.  
  94.  
  95. * numbers
  96.   The number of phone numbers of your Boss
  97.  
  98. set numbers 3
  99.  
  100.  
  101. ************************** MODEM STUFF IS HERE *************************
  102.  
  103. * device
  104.   Your serial device
  105.  
  106. set device serial.device
  107.  
  108.  
  109. * unit
  110.   Your port unit number
  111.  
  112. set unit 0
  113.  
  114.  
  115. * DTR_control
  116.   0 - No support for DTR
  117.   1 - Internal port 'twiddling the bits' - *ONLY USE THIS ON the internal
  118.       serial hardware!!!*
  119.   2 - SET_CTRL_LINES method (ASDG DSB, PDIO, CMI Multiport, CSA Magnum)
  120.  
  121. set DTR_Control            1
  122.  
  123.  
  124. * SerReadBuf
  125.   Serial Receive buffer in K. This is a value given to the particular
  126.   serial driver, and the driver itself allocates this buffer.
  127.  
  128. set serreadbuf             16
  129.  
  130.  
  131. * SerWriteBuf
  132.   Serial Write buffer in K.  This is the  switch to turn on  the double
  133.   buffered writes to the serial port.  The value has to be greater than
  134.   the size of the largest single write that would be made. For example,
  135.   a 9600bps+ modem uses an 8K block to write, so some value LARGER than
  136.   this (Say 10) should be used. Two buffers of this size are allocated.
  137.   *NOTE* : This feature separates the good serial drivers from the bad.
  138.   If your system does not work with this turned on, a value of 0 can be
  139.   used to turn this feature off.
  140.  
  141. set serwritebuf            16
  142.  
  143.  
  144. * Modem strings
  145.   Commands  sent to the modem are interpreted using the following special
  146.   characters.  These are in addition to  any special characters the modem
  147.   understands (comma for example).
  148.  
  149.     ~      add a delay 240ms
  150.     `      add a delay 60ms
  151.     |      carriage return
  152.     ^      raise DTR       Use ONLY if DTRCTL set to 1
  153.     v      drop dtr        Use ONLY if DTRCTL set to 1
  154.     \      escape special character 
  155.            (in case you USE some of the above as text)
  156.  
  157.   One would precede these characters with the '\' escape
  158.   character if the special character needed to be sent out
  159.   the modem.  In order to be able to send an "AT\" type
  160.   command to the modem, you must use 4 '\' in the string.
  161.   eg:        AT\\\\X3        
  162.  
  163. set Prompt       "OK"
  164. set Atten        "AT|"
  165. ;set dialstring  "ATDT"
  166. set dialstring   "ATS7=20DT"
  167. set InitString   "ATZ|"
  168. ;set InitString  "~AT&fl3n0x7s20=3S38=32*Q1|"
  169. ;set InitString  "~AT&FX4B0E1S10=30S11=50S0=0s7=45S9=6|"
  170. set HangupString "+++~~~~~|ATH0|"
  171.  
  172.  
  173. * slowmodem
  174.   If the variable SlowModem is TRUE, a 60ms delay will be placed between
  175.   each character sent during initialisations.
  176.  
  177. set SlowModem FALSE
  178.  
  179.  
  180. * baud setting for the serial port
  181.   The baudrate between the modem and the amiga.
  182.   If it has to be locked, set the locked flag to TRUE.
  183.  
  184. set baud  38400
  185. set locked TRUE
  186. ;set baud   2400
  187. ;set locked FALSE
  188.  
  189.  
  190. * minbaud
  191.   Minimum allowed connexion speed. If the modem-to-modem connexion speed
  192.   is lower than minbaud, rock hangs up and the dial loop continues.
  193.   -- This parameter is used only when calling the Boss --
  194.  
  195. set minbaud 14400
  196.  
  197.  
  198. * initloop and initwait
  199.   Rock  will try to initialize the modem "initloop" times,  and will wait
  200.   "initwait" seconds between each try.
  201.   You don't need to change these parameters, except if there is a problem
  202.   initializing your modem.
  203.  
  204. set initloop 8
  205. set initwait 3
  206.  
  207.  
  208. * calldelay
  209.   Calldelay is how many seconds to wait between dials.
  210.  
  211. set calldelay 60
  212.  
  213.  
  214. * modemwait
  215.   How long should we wait for a modem response  (connect, busy,...)
  216.   If the modem doesn't respond before this timeout, rock will exit.
  217.   To avoid this, you should set the S7 register of your modem to a value
  218.   below modemwait: the modem will then return a NO CARRIER message before
  219.   rock's termination, and the dial loop will continue.
  220.  
  221. set modemwait 60
  222.  
  223.  
  224. ************************* DISPLAY STUFF IS HERE ************************
  225.  
  226. * status
  227.   Set the ROCK status window. If you don't use KCON:, replace it by CON:
  228.  
  229. set status KCON:0/155/640/45
  230.  
  231.  
  232. * closestatus
  233.   Do you want the status window to close itself after rock has exited ?
  234.   Leaving it open may be useful if you encounter problems configuring
  235.   rock, as you can look at what has happened or save it to a file (if
  236.   you use KCON).
  237.  
  238. set closestatus TRUE
  239.  
  240.  
  241. * pubscreen
  242.   Name of the public screen you want Rock windows to open on.
  243.  
  244. set pubscreen ""
  245. ;set pubscreen PMScreen
  246. ;set pubscreen SPOT
  247.  
  248.  
  249. * xprdisplay
  250.   Do you want an Xpr transfer window ? yes of course :)
  251.   Don't use kingcon for this window.
  252.  
  253. set xprdisplay TRUE
  254.  
  255.  
  256. * xprwin
  257.   Set the Xpr transfer window.
  258.  
  259. set xprwin RAW:0/25/640/130
  260.  
  261.  
  262. * logdisplay
  263.   Do you want a log display after the session ?
  264.   (displays the contents of the logfile generated for this session)
  265.  
  266. set logdisplay TRUE
  267.  
  268.  
  269. * logwin
  270.   Set the Log Display window.
  271.  
  272. set logdisplay KCON:0/11/640/190
  273.  
  274.  
  275. ***************************** FILES STUFF HERE *************************
  276.  
  277. * logrock
  278.   Do you want to log Rock in a logfile ?
  279.  
  280. set logrock TRUE
  281.  
  282.  
  283. * logfile
  284.   Set the Logfile path and name.
  285.  
  286. set logfile LOGS:Rock.log
  287.  
  288.  
  289. * inbound
  290.   Your inbound directory. Don't forget the trailing "/" or ":"
  291.  
  292. set inbound mail:inbound/
  293.  
  294.  
  295. * outbound
  296.   Your inbound directory. Don't forget the trailing "/" or ":"
  297.  
  298. set outbound mail:outbound/
  299.  
  300.  
  301. * nodelist
  302.   Your nodelist directory. Don't forget the trailing "/" or ":"
  303.   If you don't use a nodelist, set this to FALSE.
  304.  
  305. set nodelist mail:nodelist/
  306. ;set nodelist FALSE
  307.  
  308.  
  309. ************************ WE ARE FINISHED - ENJOY IT ********************
  310.